home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / message / subcls / winposch.bas < prev    next >
Encoding:
BASIC Source File  |  1995-05-31  |  460 b   |  22 lines

  1. Option Explicit
  2.  
  3. ' Windows declarations
  4. Declare Sub hmemcpy Lib "Kernel" (lpDest As Any, lpSource As Any, ByVal nCount As Long)
  5.  
  6. ' Windows constants
  7. Global Const WM_WINDOWPOSCHANGING = &H46
  8. Global Const SWP_NOSIZE = &H1
  9. Global Const SWP_NOMOVE = &H2
  10.  
  11. ' Windows data types
  12. Type WINDOWPOS
  13.     hWnd As Integer
  14.     hwndInsertAfter As Integer
  15.     x As Integer
  16.     y As Integer
  17.     cx As Integer
  18.     cy As Integer
  19.     flags As Integer
  20. End Type
  21.  
  22.